home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstrings.arc / STRLEN.C < prev    next >
Text File  |  1985-08-06  |  1KB  |  46 lines

  1. /*
  2.     CSTRINGS.LBR VERSION 1.0
  3.     Spark Software, Inc.
  4.  
  5.         If you find this software of use, it is requested that you send
  6.         a donation ($10.00 suggested) to:
  7.  
  8.             Spark Software, Inc.
  9.             24 Royal Crest Dr., #5
  10.             Nashua, NH  03060
  11.  
  12.         Upon receiving your donation, your name will be added to the 
  13.         List of Registered Users, and future updates can be obtained
  14.         from the SPARKIE RBBS at (603) 888-8179.
  15.  
  16.         If you include an extra $10.00 with your donation, the newest
  17.         version of CSTRINGS.LBR will be mailed to you.
  18.  
  19.         Call SPARKIE RBBS at the number above for other Spark Software
  20.         products!!!
  21. */
  22.  
  23. /*
  24.  *    strlen (str)
  25.  *    char *str;
  26.  *
  27.  *    This function returns the length (in bytes) of str, excluding
  28.  *    the null terminator byte.
  29.  */
  30.  
  31. strlen(str)
  32. register char *str;
  33. {
  34.                     /* Start with 0 for a count */
  35.     register int len = 0;
  36.  
  37.                                         /* As long as we don't hit the
  38.                        null terminator, keep counting */
  39.     while (*str++)
  40.         ++len;
  41.  
  42.                     /* Now return the count */
  43.     return (len);
  44.  
  45. } /* strlen */
  46.